Package com. streamwide. smartms. lib. core. api. contact
Types
Link copied to clipboard
fail reasons when loading contacts
Link copied to clipboard
Link copied to clipboard
This callback represent the changing of the Public Visibility setting
Link copied to clipboard
Load Contact details Callback
Link copied to clipboard
Link copied to clipboard
Object that contains contact filter options: Organization (group and user) CONNECTIVITY : CONNECTED / NOT_CONNECTED USER_STATUS :ON_DUTY / OFF_DUTY OPERATIONAL_STATUS_LIST : list of operation status Ids
Link copied to clipboard
STWContactManager Public Class that manages all operations concerning contacts in the Application.
Link copied to clipboard
This interface is a Callback useful to receive all search results Callback initialization is needed one single time for all search operations for the same screen
Link copied to clipboard
The interface Stw contact setting request callback.
Link copied to clipboard
Interface util to receive All contact Update events
Link copied to clipboard
Load group details Callback
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Load contacts Callback
Link copied to clipboard
STWSearchControllerClass responsible to manage all search contact operationsTo create a new search Controller instance you need to write this code: This class offers several possible operations defined in the following list:Filter Search resultLoad more items
STWSearchController searchController =
STWContactManager.getInstance().createSearchController(new STWSearchController.STWContactSearchCallback() {
@Override
public void onStart() {
// Code ..
}
@Override
public void onComplete(List<ContactItem> businessContacts, List<ContactItem> smartMsContacts, String keyWord) {
//Code...
}
}, window);
Content copied to clipboard
- Search contact by keyword
- Filter Search result
- Load more items
.......
searchController.search(context, keyword);
........
Content copied to clipboard
......
@STWContactFilter int filter = STWContactFilter.GROUP;
searchController.filter(context, filter);
......
Content copied to clipboard
.....
searchController.loadMore(context);
........
Content copied to clipboard
Link copied to clipboard